home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / ASP.MO_ / asp.mof
Encoding:
Text File  |  2003-02-21  |  859 b   |  43 lines

  1. //**************************************************
  2. // *** ASP Trace Data Layout
  3. //**************************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6.  
  7. [Dynamic,
  8.   Description("IIS: Active Server Pages (ASP)") : amended,
  9.   Guid("{06b94d9a-b15e-456e-a4ef-37c984a2cb4b}"),
  10.   locale("MS\\0x409")]
  11. class ASP_Trace:EventTrace
  12. {
  13.  
  14. };
  15.  
  16. [Dynamic,
  17.  Description("ASP Request") : amended,
  18.  Guid("{1fc299fa-3fc4-4c37-910d-de5b911d0270}"),
  19.  DisplayName("AspReq"),
  20.  locale("MS\\0x409")
  21. ]
  22. class ASP_Trans:ASP_Trace
  23. {
  24.  
  25. };
  26.  
  27. [Dynamic,
  28.  Description("ASP Request Types") : amended,
  29.  EventType{1, 2},
  30.  EventTypeName{"Start", "End"} : amended
  31. ]
  32. class AspRequest:ASP_Trans
  33. {
  34.     [WmiDataId(1),
  35.      Description("ConnID") : amended,
  36.      pointer,
  37.      read]
  38.      uint32  ConnID;
  39. };
  40.  
  41.  
  42.  
  43.